Complete Coordinate Geometry

From Foundations to JEE Advanced Mastery

📚 Table of Contents

1. Historical & Conceptual Foundation

René Descartes (1596-1650), a French mathematician and philosopher, revolutionized mathematics in 1637 with his publication "La Géométrie". He introduced the concept of using algebraic equations to describe geometric shapes, creating a bridge between algebra and geometry that transformed mathematical thinking forever.

Why Algebra + Geometry Integration Changed Mathematics

Before Descartes, geometry and algebra were separate disciplines. Geometry dealt with shapes and spaces through logical reasoning, while algebra focused on equations and number manipulation. The Cartesian coordinate system unified these fields, enabling:

Cartesian Plane Construction

The Cartesian plane is constructed by intersecting two perpendicular number lines at their zero points. The horizontal line is called the x-axis (abscissa), and the vertical line is called the y-axis (ordinate). Their intersection point is the origin (0, 0).

O(0,0) Quadrant I Quadrant II Quadrant III Quadrant IV +x +y -x -y A(4,-4) B(-4,-4) C(4,4) D(-4,4)

Figure 1.1: Cartesian Coordinate System with Quadrants

Plotting Points

A point in the plane is represented as an ordered pair (x, y), where x is the horizontal distance from the origin (positive right, negative left) and y is the vertical distance (positive up, negative down).

Distance Formula (Derivation)

Problem: Find the distance between two points \$A(x_1, y_1)\$ and \$B(x_2, y_2)\$.

Consider two points \$A(x_1, y_1)\$ and \$B(x_2, y_2)\$ on the Cartesian plane. Construct a right triangle with AB as the hypotenuse.

The horizontal leg has length \$|x_2 - x_1|\$ and the vertical leg has length \$|y_2 - y_1|\$.

By the Pythagorean theorem:

$$AB^2 = (x_2 - x_1)^2 + (y_2 - y_1)^2$$ $$AB = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}$$

The distance formula is essentially the Pythagorean theorem applied to the coordinate plane. The differences in x and y coordinates form the legs of a right triangle, and the distance is the hypotenuse.

Compass Construction: To find points at a fixed distance from a given point, use a compass set to that radius. The compass point is placed at the given point, and arcs are drawn intersecting the required locus.

Section Formula (Internal & External Division)

Problem: Find the coordinates of a point P that divides the line segment joining \$A(x_1, y_1)\$ and \$B(x_2, y_2)\$ in the ratio m:n.

Internal Division (m:n):

Let P divide AB internally in ratio m:n, meaning AP:PB = m:n.

Using similar triangles or section formula derivation:

$$x = \frac{mx_2 + nx_1}{m + n}, \quad y = \frac{my_2 + ny_1}{m + n}$$

Derivation:

The x-coordinate changes from \$x_1\$ to \$x_2\$ as we move from A to B. Since P divides in ratio m:n, it is \$\frac{m}{m+n}\$ of the way from A to B.

$$x = x_1 + \frac{m}{m+n}(x_2 - x_1) = \frac{(m+n)x_1 + m(x_2 - x_1)}{m+n} = \frac{mx_2 + nx_1}{m+n}$$

External Division (m:n):

Let P divide AB externally in ratio m:n, meaning AP:PB = m:n but P lies outside the segment.

$$x = \frac{mx_2 - nx_1}{m - n}, \quad y = \frac{my_2 - ny_1}{m - n}$$

Midpoint Formula

The midpoint is a special case of section formula where m = n = 1.

$$M = \left(\frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2}\right)$$

Area of Triangle Using Determinant

Problem: Find the area of triangle with vertices \$A(x_1, y_1)\$, \$B(x_2, y_2)\$, \$C(x_3, y_3)\$.

Using the shoelace formula derived from determinant properties:

$$\text{Area} = \frac{1}{2}\left|x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2)\right|$$

Or in determinant form:

$$\text{Area} = \frac{1}{2}\left|\begin{vmatrix} x_1 & y_1 & 1 \\ x_2 & y_2 & 1 \\ x_3 & y_3 & 1 \end{vmatrix}\right|$$

The determinant gives twice the signed area of the parallelogram formed by vectors AB and AC. The absolute value gives the actual area, and dividing by 2 gives the triangle area.

Condition of Collinearity

Three points \$A(x_1, y_1)\$, \$B(x_2, y_2)\$, \$C(x_3, y_3)\$ are collinear if and only if the area of the triangle they form is zero.

$$x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2) = 0$$

📊 Interactive: Distance & Section Formula

Distance: | Midpoint:

📝 Graded Examples - Foundations
Level 1: Basic
Find the distance between points A(3, 4) and B(7, 1).

Solution:

Using distance formula:

$$d = \sqrt{(7-3)^2 + (1-4)^2} = \sqrt{4^2 + (-3)^2} = \sqrt{16 + 9} = \sqrt{25} = 5$$
Concept: Distance formula derived from Pythagorean theorem
Level 2: Board
Find the coordinates of the point that divides the line segment joining A(2, 3) and B(8, 7) in the ratio 2:1.

Solution:

Using section formula (internal division):

$$x = \frac{2 \times 8 + 1 \times 2}{2 + 1} = \frac{16 + 2}{3} = \frac{18}{3} = 6$$ $$y = \frac{2 \times 7 + 1 \times 3}{2 + 1} = \frac{14 + 3}{3} = \frac{17}{3}$$

Point is \$(6, \frac{17}{3})\$

Concept: Section formula for internal division
Common Mistake: Confusing m:n ratio - ensure m corresponds to the second point B
Level 3: JEE Main
If the area of triangle with vertices (k, 3), (6, -2), and (3, 5) is 15 square units, find k.

Solution:

Using area formula:

$$\text{Area} = \frac{1}{2}\left|k(-2-5) + 6(5-3) + 3(3-(-2))\right| = 15$$ $$\frac{1}{2}\left|-7k + 12 + 15\right| = 15$$ $$\frac{1}{2}|-7k + 27| = 15$$ $$|-7k + 27| = 30$$

Case 1: -7k + 27 = 30 ⇒ -7k = 3 ⇒ k = -3/7

Case 2: -7k + 27 = -30 ⇒ -7k = -57 ⇒ k = 57/7

Concept: Area of triangle using determinant, absolute value handling
Level 4: JEE Advanced
If the points (5, 5), (6, 4), and (k, 2) are collinear, find the value of k.

Solution:

Using collinearity condition (area = 0):

$$5(4-2) + 6(2-5) + k(5-4) = 0$$ $$5(2) + 6(-3) + k(1) = 0$$ $$10 - 18 + k = 0$$ $$k = 8$$
Concept: Collinearity condition, determinant method
Alternative: Slope method - slope between first two points equals slope between first and third

2. Straight Lines – Full Theory

Slope (Geometric Meaning)

The slope of a line is the tangent of the angle it makes with the positive x-axis. It measures the steepness and direction of the line.

$$m = \tan\theta$$

where \$\theta\$ is the angle with the positive x-axis (\$-90^\circ < \theta < 90^\circ\$).

Geometric Construction: To find the slope of a line, select any two points on the line. The vertical change (rise) divided by the horizontal change (run) gives the slope. This is equivalent to \$\tan\theta\$ where \$\theta\$ is the angle with the x-axis.

All Forms of Line Equations

1. Point-Slope Form

Given a point \$(x_1, y_1)\$ and slope m:

$$y - y_1 = m(x - x_1)$$

Starting from the definition of slope:

$$m = \frac{y - y_1}{x - x_1}$$ $$y - y_1 = m(x - x_1)$$

2. Two-Point Form

Given two points \$(x_1, y_1)\$ and \$(x_2, y_2)\$:

$$\frac{y - y_1}{y_2 - y_1} = \frac{x - x_1}{x_2 - x_1}$$

The slope between the two points is:

$$m = \frac{y_2 - y_1}{x_2 - x_1}$$

Using point-slope form with either point:

$$y - y_1 = \frac{y_2 - y_1}{x_2 - x_1}(x - x_1)$$

3. Slope-Intercept Form

Given slope m and y-intercept c:

$$y = mx + c$$

Starting from point-slope form using the y-intercept (0, c):

$$y - c = m(x - 0)$$ $$y = mx + c$$

4. Intercept Form

Given x-intercept a and y-intercept b:

$$\frac{x}{a} + \frac{y}{b} = 1$$

The line passes through (a, 0) and (0, b). Using two-point form:

$$\frac{y - 0}{b - 0} = \frac{x - a}{0 - a}$$ $$\frac{y}{b} = \frac{x - a}{-a}$$ $$-\frac{ay}{b} = x - a$$ $$a - \frac{ay}{b} = x$$ $$\frac{x}{a} + \frac{y}{b} = 1$$

5. Normal Form

Given perpendicular distance from origin p and angle α with x-axis:

$$x\cos\alpha + y\sin\alpha = p$$

The normal from origin makes angle α with x-axis. The foot of perpendicular is (p cos α, p sin α). Any point (x, y) on the line satisfies:

$$x\cos\alpha + y\sin\alpha = p$$

6. General Form

$$Ax + By + C = 0$$

where A, B, C are constants and A, B not both zero.

Slope m = -A/B, y-intercept = -C/B

Angle Between Two Lines

If two lines have slopes \$m_1\$ and \$m_2\$, the angle θ between them is given by:

$$\tan\theta = \left|\frac{m_1 - m_2}{1 + m_1m_2}\right|$$

Let the lines make angles α and β with the x-axis. Then \$m_1 = \tan\alpha\$, \$m_2 = \tan\beta\$.

The angle between lines is |α - β|.

$$\tan(\alpha - \beta) = \frac{\tan\alpha - \tan\beta}{1 + \tan\alpha\tan\beta} = \frac{m_1 - m_2}{1 + m_1m_2}$$

Taking absolute value for the acute angle:

$$\tan\theta = \left|\frac{m_1 - m_2}{1 + m_1m_2}\right|$$

Parallelism & Perpendicularity

Parallel Lines: Two lines are parallel if and only if their slopes are equal.

$$m_1 = m_2$$

Perpendicular Lines: Two lines are perpendicular if and only if the product of their slopes is -1.

$$m_1 \cdot m_2 = -1$$

Distance of Point from Line

The perpendicular distance from point \$(x_1, y_1)\$ to line \$Ax + By + C = 0\$ is:

$$d = \frac{|Ax_1 + By_1 + C|}{\sqrt{A^2 + B^2}}$$

Let the line be Ax + By + C = 0. The normal vector is (A, B).

The distance from (x₁, y₁) to the line is the projection of vector from any point on line to (x₁, y₁) onto the unit normal.

Take point (0, -C/B) on the line (if B ≠ 0). The vector is (x₁, y₁ + C/B).

Distance = \$\frac{|Ax_1 + By_1 + C|}{\sqrt{A^2 + B^2}}\$

The distance formula represents the length of the perpendicular from the point to the line. The denominator normalizes the coefficient vector to unit length.

Family of Lines

Parallel to given line: \$Ax + By + k = 0\$ where k is parameter

Passing through intersection: \$L_1 + \lambda L_2 = 0\$ where λ is parameter

Locus Problems

The locus of a point satisfying given geometric conditions is the set of all points that satisfy those conditions. To find the locus equation:

  1. Let the moving point be (h, k)
  2. Translate the geometric condition into an equation in h and k
  3. Eliminate parameters to get relation between h and k
  4. Replace h with x and k with y

📊 Interactive: Straight Lines

📝 Graded Examples - Straight Lines
Level 1: Basic
Find the equation of line passing through (2, 3) with slope 4.

Solution:

Using point-slope form:

$$y - 3 = 4(x - 2)$$ $$y - 3 = 4x - 8$$ $$y = 4x - 5$$
Concept: Point-slope form of line equation
Level 2: Board
Find the distance from point (3, 4) to the line 3x + 4y - 10 = 0.

Solution:

Using distance formula:

$$d = \frac{|3(3) + 4(4) - 10|}{\sqrt{3^2 + 4^2}} = \frac{|9 + 16 - 10|}{\sqrt{9 + 16}} = \frac{|15|}{5} = 3$$
Concept: Distance from point to line formula
Level 3: JEE Main
If the angle between lines \$x + 2y + 7 = 0\$ and \$2x - y + 5 = 0\$ is θ, find tan θ.

Solution:

Slope of first line: m₁ = -1/2

Slope of second line: m₂ = 2

$$\tan\theta = \left|\frac{m_1 - m_2}{1 + m_1m_2}\right| = \left|\frac{-1/2 - 2}{1 + (-1/2)(2)}\right| = \left|\frac{-5/2}{1 - 1}\right|$$

Denominator is 0, so tan θ is undefined, meaning θ = 90°

Concept: Angle between lines, perpendicular condition
Common Mistake: Forgetting the absolute value and not recognizing perpendicular lines
Level 4: JEE Advanced
Find the locus of the midpoint of the line segment joining the origin to a point on the line \$x + y = 1\$.

Solution:

Let P(t, 1-t) be a point on the line x + y = 1.

Midpoint M of OP is \$\left(\frac{t}{2}, \frac{1-t}{2}\right)\$

Let M = (h, k), so:

$$h = \frac{t}{2}, \quad k = \frac{1-t}{2}$$ $$2h = t, \quad 2k = 1 - t$$ $$2h + 2k = 1$$ $$x + y = \frac{1}{2}$$
Concept: Locus problems, parameter elimination

3. Circle – Complete Depth

Standard Equation of Circle

Problem: Find the equation of a circle with center (h, k) and radius r.

By definition, a circle is the set of all points equidistant from the center.

Let (x, y) be any point on the circle. Distance to center (h, k) equals r:

$$\sqrt{(x - h)^2 + (y - k)^2} = r$$

Squaring both sides:

$$(x - h)^2 + (y - k)^2 = r^2$$

The circle equation states that the squared distance from any point on the circle to the center equals the squared radius. This is the geometric definition translated into algebra.

General Form of Circle Equation

$$x^2 + y^2 + 2gx + 2fy + c = 0$$

Center = (-g, -f), Radius = \$\sqrt{g^2 + f^2 - c}\$

Condition for circle: \$g^2 + f^2 - c > 0\$

Expand the standard form:

$$(x - h)^2 + (y - k)^2 = r^2$$ $$x^2 - 2hx + h^2 + y^2 - 2ky + k^2 = r^2$$ $$x^2 + y^2 - 2hx - 2ky + (h^2 + k^2 - r^2) = 0$$

Comparing with general form: g = -h, f = -k, c = h² + k² - r²

Equation Using Diameter Endpoints

The equation of a circle with diameter endpoints A(x₁, y₁) and B(x₂, y₂) is:

$$(x - x_1)(x - x_2) + (y - y_1)(y - y_2) = 0$$

For any point P(x, y) on the circle, angle APB is a right angle (Thales' theorem).

Slope of PA × slope of PB = -1 (for perpendicular lines)

$$\frac{y - y_1}{x - x_1} \cdot \frac{y - y_2}{x - x_2} = -1$$ $$(y - y_1)(y - y_2) = -(x - x_1)(x - x_2)$$ $$(x - x_1)(x - x_2) + (y - y_1)(y - y_2) = 0$$

Equation Through Three Points

Given three non-collinear points, the circle equation can be found by solving:

$$x^2 + y^2 + 2gx + 2fy + c = 0$$

Substituting the three points gives three equations in g, f, c.

Tangent to a Circle

Condition of Tangency: A line is tangent to a circle if the distance from the center to the line equals the radius.

Tangent to circle \$x^2 + y^2 = r^2\$ at point (x₁, y₁) on the circle:

$$xx_1 + yy_1 = r^2$$

The radius to (x₁, y₁) has slope y₁/x₁. The tangent is perpendicular to radius.

Slope of tangent = -x₁/y₁

Using point-slope form:

$$y - y_1 = -\frac{x_1}{y_1}(x - x_1)$$ $$y y_1 - y_1^2 = -x x_1 + x_1^2$$ $$x x_1 + y y_1 = x_1^2 + y_1^2 = r^2$$

Length of Tangent

The length of tangent from point (x₁, y₁) to circle \$x^2 + y^2 + 2gx + 2fy + c = 0\$ is:

$$L = \sqrt{x_1^2 + y_1^2 + 2gx_1 + 2fy_1 + c}$$

Radical Axis

The radical axis of two circles is the locus of points from which tangents to both circles are equal in length.

For circles S₁ = 0 and S₂ = 0, the radical axis is S₁ - S₂ = 0.

Let P be a point such that tangent lengths to both circles are equal:

$$\sqrt{S_1(P)} = \sqrt{S_2(P)}$$ $$S_1(P) = S_2(P)$$ $$S_1(P) - S_2(P) = 0$$

Orthogonal Circles

Two circles are orthogonal if their tangents at the point of intersection are perpendicular.

Condition: For circles $x^2 + y^2 + 2gx + 2fy + c = 0$ and $x^2 + y^2 + 2g'x + 2f'y + c' = 0$, the condition for orthogonality is:

$$2gg' + 2ff' = c + c'$$

📊 Interactive: Circle

📝 Graded Examples - Circle
Level 1: Basic
Find the equation of circle with center (2, -3) and radius 5.

Solution:

Using standard form: (x - h)² + (y - k)² = r²

$$(x - 2)^2 + (y + 3)^2 = 25$$ $$x^2 - 4x + 4 + y^2 + 6y + 9 = 25$$ $$x^2 + y^2 - 4x + 6y - 12 = 0$$
Concept: Standard circle equation
Level 2: Board
Find the length of tangent from point (5, 3) to circle x² + y² - 2x + 4y - 20 = 0.

Solution:

Length of tangent = √(S₁)

where S₁ = x₁² + y₁² + 2g(x₁) + 2f(y₁) + c

Here: g = -1, f = 2, c = -20

S₁ = 25 + 9 + 2(-1)(5) + 2(2)(3) - 20

S₁ = 34 - 10 + 12 - 20 = 16

Length = √16 = 4

Concept: Length of tangent formula
Level 3: JEE Main
Find the equation of tangent to circle x² + y² = 9 at point (2, √5).

Solution:

Using tangent form: xx₁ + yy₁ = r²

x(2) + y(√5) = 9

2x + √5 y = 9

Concept: Tangent to circle at a point
Level 4: JEE Advanced
Find the radical axis of circles x² + y² + 4x + 6y + 12 = 0 and x² + y² - 2x + 4y - 8 = 0.

Solution:

Radical axis: S₁ - S₂ = 0

(x² + y² + 4x + 6y + 12) - (x² + y² - 2x + 4y - 8) = 0

4x + 6y + 12 + 2x - 4y + 8 = 0

6x + 2y + 20 = 0

3x + y + 10 = 0

Concept: Radical axis of two circles

4. Parabola – From Definition to JEE Level

Focus-Directrix Definition

A parabola is the set of all points in a plane that are equidistant from a fixed point (focus) and a fixed line (directrix).

Directrix Focus P PF = PD

Figure 4.1: Parabola Definition - Focus and Directrix

Derivation of Standard Equation

Problem: Derive the equation of parabola with focus (a, 0) and directrix x = -a.

Let P(x, y) be any point on the parabola.

Distance to focus: PF = √((x-a)² + y²)

Distance to directrix: PD = |x + a|

By definition: PF = PD

√((x-a)² + y²) = |x + a|

Squaring: (x-a)² + y² = (x + a)²

x² - 2ax + a² + y² = x² + 2ax + a²

y² = 4ax

All Orientations of Parabola

Orientation Equation Focus Directrix Axis
Right opening y² = 4ax (a, 0) x = -a x-axis
Left opening y² = -4ax (-a, 0) x = a x-axis
Upward opening x² = 4ay (0, a) y = -a y-axis
Downward opening x² = -4ay (0, -a) y = a y-axis

Parametric Form

For parabola y² = 4ax:

x = at², y = 2at

Parameter t is called the parameter or parameter of the point.

Substituting x = at², y = 2at into y² = 4ax:

(2at)² = 4a(at²)

4a²t² = 4a²t² ✓

Tangent to Parabola

Tangent at point (x₁, y₁) on y² = 4ax:

yy₁ = 2a(x + x₁) or y = mx + a/m where m = y₁/2a

For parabola y² = 4ax, differentiate implicitly:

2y(dy/dx) = 4a

dy/dx = 2a/y

At point (x₁, y₁), slope m = 2a/y₁

Equation: y - y₁ = m(x - x₁)

y - y₁ = (2a/y₁)(x - x₁)

yy₁ - y₁² = 2ax - 2ax₁

yy₁ = 2ax + y₁² - 2ax₁

Since y₁² = 4ax₁: yy₁ = 2ax + 4ax₁ - 2ax₁ = 2a(x + x₁)

Normal to Parabola

Normal at (x₁, y₁) on y² = 4ax:

y = -mx + 2am + am³

where m = y₁/2a

Chord of Contact

Chord of contact from point (x₁, y₁) to parabola y² = 4ax:

yy₁ = 2a(x + x₁)

Director Circle

The director circle of a parabola is the locus of the point from which two tangents are perpendicular.

For y² = 4ax, director circle: x + a = 0

Latus Rectum

The latus rectum of a parabola is the chord through the focus perpendicular to the axis. Its endpoints are called the extremities of the latus rectum.

For y² = 4ax:

Endpoints: (a, 2a), (a, -2a)

Length of latus rectum = 4a

Reflection Property

Any ray parallel to the axis of a parabola, after reflecting from the curve, passes through the focus.

This follows from the tangent property: the angle of incidence equals angle of reflection.

For any point P on the parabola, the tangent makes equal angles with the line from P to the focus and the line parallel to the axis.

📊 Interactive: Parabola

📝 Graded Examples - Parabola
Level 1: Basic
Find focus, directrix, and length of latus rectum of parabola y² = 8x.

Solution:

Comparing y² = 8x with y² = 4ax:

4a = 8 ⇒ a = 2

Focus: (a, 0) = (2, 0)

Directrix: x = -a = -2

Length of latus rectum = 4a = 8

Concept: Standard parabola parameters
Level 2: Board
Find equation of tangent to parabola y² = 12x at point (3, 6).

Solution:

Using tangent form: yy₁ = 2a(x + x₁)

Here y² = 12x, so 4a = 12 ⇒ a = 3

Point (3, 6): y(6) = 2(3)(x + 3)

6y = 6(x + 3)

y = x + 3

Concept: Tangent to parabola at a point
Level 3: JEE Main
Find the equation of normal to parabola y² = 4x at point (1, 2).

Solution:

For y² = 4ax, a = 1

Point (1, 2): slope of tangent m₁ = 2a/y₁ = 2/2 = 1

Slope of normal m = -1/m₁ = -1

Equation: y - 2 = -1(x - 1)

y - 2 = -x + 1

y = -x + 3

Concept: Normal to parabola, slope relationship
Level 4: JEE Advanced
Find the locus of the point of intersection of tangents to parabola y² = 4ax which are perpendicular to each other.

Solution:

Let tangents have slopes m₁ and m₂ with m₁m₂ = -1 (perpendicular)

Equation of tangent with slope m: y = mx + a/m

Let intersection point be (h, k)

k = m₁h + a/m₁ and k = m₂h + a/m₂

Since m₂ = -1/m₁:

k = m₁h + a/m₁ and k = (-1/m₁)h - am₁

Adding: 2k = m₁h - m₁h + a/m₁ - am₁

2k = a(1/m₁ - m₁)

From first equation: k - m₁h = a/m₁

Substitute: 2k = (k - m₁h) - m₁(k - m₁h)

2k = k - m₁h - m₁k + m₁²h

k = h(m₁² - 1) - m₁k

This is messy. Better approach:

The locus is the directrix: x + a = 0

Concept: Director circle, perpendicular tangents
Alternative: Use condition for perpendicular tangents directly
Level 5: Challenge
If the normal at point P on parabola y² = 4ax meets the parabola again at Q, prove that the locus of the midpoint of PQ is another parabola.

Solution:

Let P be (at₁², 2at₁)

Equation of normal at P: y = -t₁x + 2at₁ + at₁³

This meets parabola again at Q. Let Q correspond to parameter t₂.

Substitute parametric equations into normal equation:

2at₂ = -t₁(at₂²) + 2at₁ + at₁³

2t₂ = -t₁t₂² + 2t₁ + t₁³

t₁t₂² + 2t₂ - 2t₁ - t₁³ = 0

This is quadratic in t₂. One root is t₁ (for point P).

Sum of roots: t₁ + t₂ = -2/t₁

t₂ = -t₁ - 2/t₁

Midpoint M of PQ:

x = a(t₁² + t₂²)/2 = a(t₁² + (t₁ + 2/t₁)²)/2

y = 2a(t₁ + t₂)/2 = a(t₁ + t₂) = a(t₁ - t₁ - 2/t₁) = -2a/t₁

From y = -2a/t₁, we get t₁ = -2a/y

Substitute into x:

x = a[(-2a/y)² + (-2a/y + 2y/(-2a))²]/2

After simplification: x = a²/y + y³/(4a²)

4a²x = 4a⁴ + y⁴/(4a²)

y⁴ = 16a⁴x - 16a⁶

This is a parabola-like curve (though not standard parabola)

Concept: Normal to parabola, parametric form, locus

5. Ellipse – Complete Theory

Definition & Derivation

An ellipse is the set of all points in a plane such that the sum of the distances from any point on the curve to two fixed points (foci) is constant.

F₁ F₂ O P PF₁ + PF₂ = 2a (constant)

Figure 5.1: Ellipse Definition - Sum of Distances to Foci

Problem: Derive the equation of ellipse with foci at (-c, 0) and (c, 0), and major axis 2a.

Let P(x, y) be any point on the ellipse.

PF₁ + PF₂ = 2a

√((x + c)² + y²) + √((x - c)² + y²) = 2a

√((x + c)² + y²) = 2a - √((x - c)² + y²)

Squaring both sides:

(x + c)² + y² = 4a² - 4a√((x - c)² + y²) + (x - c)² + y²

x² + 2cx + c² + y² = 4a² - 4a√((x - c)² + y²) + x² - 2cx + c² + y²

4cx = 4a² - 4a√((x - c)² + y²)

cx - a² = -a√((x - c)² + y²)

Squaring again:

(cx - a²)² = a²[(x - c)² + y²]

c²x² - 2a²cx + a⁴ = a²(x² - 2cx + c² + y²)

c²x² - 2a²cx + a⁴ = a²x² - 2a²cx + a²c² + a²y²

(c² - a²)x² + a²y² = a²c² - a⁴

Since c² < a², let b² = a² - c²:

-(b²)x² + a²y² = -a²b²

$$\frac{x^2}{a^2} + \frac{y^2}{b^2} = 1$$

Eccentricity

Eccentricity e = c/a, where c = √(a² - b²)

Since c < a, we have 0 < e < 1

Also, b² = a²(1 - e²)

Parametric Representation

For ellipse \$\frac{x^2}{a^2} + \frac{y^2}{b^2} = 1\$:

x = a cos θ, y = b sin θ

where θ is called the eccentric angle.

Tangent to Ellipse

Tangent at point (x₁, y₁) on ellipse \$\frac{x^2}{a^2} + \frac{y^2}{b^2} = 1\$:

$$\frac{xx_1}{a^2} + \frac{yy_1}{b^2} = 1$$

Using the fact that the tangent is the polar of the point with respect to the ellipse.

For ellipse S = 0, the polar of (x₁, y₁) is S₁ = 0.

$$\frac{xx_1}{a^2} + \frac{yy_1}{b^2} = 1$$

Normal to Ellipse

Normal at (x₁, y₁):

$$\frac{a^2x}{x_1} - \frac{b^2y}{y_1} = a^2 - b^2$$

Director Circle

The director circle of an ellipse is the locus of intersection of perpendicular tangents.

Equation: x² + y² = a² + b²

Conjugate Diameters

Two diameters are conjugate if each bisects all chords parallel to the other. For ellipse, if one diameter has slope m, the conjugate diameter has slope -b²/(a²m).

Latus Rectum

Length of latus rectum = 2b²/a

Endpoints: (ae, b²/a) and (ae, -b²/a)

Reflection Property

Any ray emanating from one focus of an ellipse, after reflecting from the curve, passes through the other focus.

📊 Interactive: Ellipse

📝 Graded Examples - Ellipse
Level 1: Basic
Find the coordinates of foci, vertices, and length of axes for ellipse \$\frac{x^2}{25} + \frac{y^2}{9} = 1\$.

Solution:

a² = 25, b² = 9

a = 5, b = 3

c = √(a² - b²) = √(25 - 9) = √16 = 4

Foci: (±4, 0) = (4, 0) and (-4, 0)

Vertices: (±a, 0) = (5, 0) and (-5, 0)

Major axis length = 2a = 10

Minor axis length = 2b = 6

Concept: Ellipse parameters from equation
Level 2: Board
Find the area of triangle with vertices (1, 2), (3, 4), and (5, 1).

Solution:

Using shoelace formula:

$$\text{Area} = \frac{1}{2}\left|1(4-1) + 3(1-2) + 5(2-4)\right|$$ $$= \frac{1}{2}\left|1(3) + 3(-1) + 5(-2)\right|$$ $$= \frac{1}{2}\left|3 - 3 - 10\right| = \frac{1}{2}|-10| = 5$$
Concept: Area of triangle, shoelace formula

6. Hyperbola – Advanced Mastery

Definition & Derivation

A hyperbola is the set of all points in a plane such that the absolute difference of the distances from any point on the curve to two fixed points (foci) is constant.

F₁ F₂

Figure 6.1: Hyperbola Definition - Difference of Distances to Foci

Standard Equation: For hyperbola with foci at (-c, 0) and (c, 0), transverse axis 2a:

$$\frac{x^2}{a^2} - \frac{y^2}{b^2} = 1$$

where b² = c² - a² and c > a > 0

Asymptotes

For hyperbola x²/a² - y²/b² = 1:

As x → ∞, y²/b² ≈ x²/a² - 1 ≈ x²/a²

y ≈ ±(b/a)x

Therefore, asymptotes are:

$$\frac{x}{a} = \frac{y}{b} \quad \text{and} \quad \frac{x}{a} = -\frac{y}{b}$$

Or: y = ±(b/a)x

Rectangular Hyperbola

A rectangular hyperbola has asymptotes perpendicular to each other (e = √2).

For rectangular hyperbola: a = b

Equation: x² - y² = a²

Or in rotated form: xy = c²

Parametric Form

For hyperbola x²/a² - y²/b² = 1:

x = a sec θ, y = b tan θ

For rectangular hyperbola xy = c²:

x = ct, y = c/t

Tangent to Hyperbola

Tangent at (x₁, y₁) on x²/a² - y²/b² = 1:

$$\frac{xx_1}{a^2} - \frac{yy_1}{b^2} = 1$$

Normal to Hyperbola

Normal at (x₁, y₁):

$$\frac{a^2x}{x_1} + \frac{b^2y}{y_1} = a^2 + b^2$$

Conjugate Hyperbola

For hyperbola x²/a² - y²/b² = 1, the conjugate hyperbola is:

$$\frac{y^2}{b^2} - \frac{x^2}{a^2} = 1$$

📊 Interactive: Hyperbola

📝 Graded Examples - Hyperbola
Level 1: Basic
Find the eccentricity, foci, and asymptotes of hyperbola x²/16 - y²/9 = 1.

Solution:

a² = 16, b² = 9

a = 4, b = 3

c = √(a² + b²) = √(16 + 9) = √25 = 5

e = c/a = 5/4 = 1.25

Foci: (±5, 0) = (5, 0) and (-5, 0)

Asymptotes: y = ±(b/a)x = ±(3/4)x

Concept: Hyperbola parameters
Level 2: Board
Find the equation of tangent to hyperbola x²/9 - y²/4 = 1 at point (3 sec θ, 2 tan θ).

Solution:

Using tangent formula: xx₁/a² - yy₁/b² = 1

x(3 sec θ)/9 - y(2 tan θ)/4 = 1

(x sec θ)/3 - (y tan θ)/2 = 1

2x sec θ - 3y tan θ = 6

Concept: Tangent to hyperbola in parametric form
Level 3: JEE Main
Find the equation of asymptotes of hyperbola 4x² - 9y² = 36.

Solution:

Divide by 36: x²/9 - y²/4 = 1

a² = 9, b² = 4

a = 3, b = 2

Asymptotes: y = ±(b/a)x = ±(2/3)x

Or: 2x ± 3y = 0

Concept: Asymptotes of hyperbola
Level 4: JEE Advanced
Find the equation of the conjugate hyperbola of x²/25 - y²/16 = 1.

Solution:

The conjugate hyperbola is obtained by replacing x²/a² - y²/b² = 1 with y²/b² - x²/a² = 1

For given hyperbola: a² = 25, b² = 16

Conjugate hyperbola: y²/16 - x²/25 = 1

Or: 16x² - 25y² = 400

Concept: Conjugate hyperbola

7. General Second Degree Equation

General Form

$$Ax^2 + By^2 + 2Hxy + 2Gx + 2Fy + C = 0$$

This represents a conic section. To identify the conic, we analyze the discriminant.

Rotation of Axes

To eliminate the xy-term, rotate axes by an angle θ where:

$$\tan 2\theta = \frac{2H}{A - B}$$

For 0 < 2θ < π, we have:

$$\theta = \frac{1}{2} \tan^{-1}\left(\frac{2H}{A - B}\right)$$

Let the original coordinates be (x, y) and rotated coordinates be (X, Y).

The transformation equations are:

$$x = X\cos\theta - Y\sin\theta$$

$$y = X\sin\theta + Y\cos\theta$$

Substituting into the general equation and equating the coefficient of XY to zero:

$$2H\cos^2\theta + (A - B)\sin\theta\cos\theta - 2H\sin^2\theta = 0$$

$$H\cos 2\theta + \frac{A - B}{2}\sin 2\theta = 0$$

$$\tan 2\theta = -\frac{2H}{A - B}$$

Taking the absolute value for the acute angle of rotation:

$$\tan 2\theta = \frac{2H}{A - B}$$

Discriminant for Conic Identification

For the general second degree equation:

$$Ax^2 + By^2 + 2Hxy + 2Gx + 2Fy + C = 0$$

The discriminant Δ determines the type of conic:

$$\Delta = \begin{vmatrix} A & H & G \\ H & B & F \\ G & F & C \end{vmatrix} = A(B C - F^2) - H(H C - FG) + G(HF - BG)$$

Condition Conic Type Additional Conditions
Δ ≠ 0 and AB - H² ≠ 0 Ellipse Real if A + B ≠ 0; Point ellipse if Δ = 0
Δ ≠ 0 and AB - H² < 0 Hyperbola Rectangular if A + B = 0
Δ ≠ 0 and AB - H² = 0 Parabola Real if A + B ≠ 0
Δ = 0 Degenerate conic Point, pair of lines, etc.

Central Conics: Conics with Δ ≠ 0 and H = 0 have center at origin. When H ≠ 0, the center is at the point satisfying:

$$\frac{\partial f}{\partial x} = 2Ax + 2Hy + 2G = 0$$

$$\frac{\partial f}{\partial y} = 2Hx + 2By + 2F = 0$$

Classification Using Discriminant

The quantity (AB - H²) is called the discriminant of the conic:

  • If AB - H² > 0: Ellipse (or imaginary ellipse)
  • If AB - H² = 0: Parabola (or degenerate)
  • If AB - H² < 0: Hyperbola (or rectangular hyperbola)

Translation of Axes

To simplify the equation of a conic with center (h, k), translate axes to move the center to origin:

$$x = X + h, \quad y = Y + k$$

where (X, Y) are the new coordinates after translation.

For a central conic with center (h, k), substituting x = X + h, y = Y + k:

$$A(X + h)^2 + B(Y + k)^2 + 2H(X + h)(Y + k) + 2G(X + h) + 2F(Y + k) + C = 0$$

Expanding and using the center conditions:

$$AX^2 + B Y^2 + 2HXY = \text{constant}$$

This removes the linear terms, giving the standard form.

Combined Rotation and Translation

For complete simplification of general conic:

Step 1: Find center (h, k) by solving partial derivative equations

Step 2: Translate: x = X + h, y = Y + k

Step 3: Find rotation angle θ from tan 2θ = 2H/(A - B)

Step 4: Rotate: X = x'cosθ - y'sinθ, Y = x'sinθ + y'cosθ

Special Cases

Pair of Straight Lines: If the general equation represents two lines, it can be factored into linear factors.

For lines through origin: ax² + 2hxy + by² = 0

The slopes m₁, m₂ satisfy: bm² + 2hm + a = 0

The lines are perpendicular if a + b = 0

The lines are coincident if h² = ab

The general second degree equation can represent any conic section. The process of rotation and translation helps identify the type of conic and write it in standard form.

📝 Graded Examples - General Equation
Level 1: Basic
Identify the conic represented by equation x² + 4xy + 4y² + 2x + 3y + 1 = 0.

Solution:

Comparing with Ax² + By² + 2Hxy + 2Gx + 2Fy + C = 0:

A = 1, B = 4, 2H = 4 ⇒ H = 2

Discriminant: AB - H² = 1×4 - 2² = 4 - 4 = 0

Since AB - H² = 0, the conic is a parabola.

Concept: Discriminant test for conic identification
Level 2: Board
Find the angle of rotation to eliminate the xy-term from 5x² + 6xy + 5y² = 8.

Solution:

Given: A = 5, B = 5, 2H = 6 ⇒ H = 3

tan 2θ = 2H/(A - B) = 6/(5 - 5) = 6/0 = ∞

2θ = 90° ⇒ θ = 45°

The axes should be rotated by 45° to eliminate xy-term.

Concept: Rotation of axes to eliminate xy-term
Level 3: JEE Main
Find the center of the conic 2x² + 5xy + 2y² - 4x - 5y + 3 = 0.

Solution:

Given: A = 2, B = 2, H = 5/2, G = -2, F = -5/2, C = 3

For center (h, k), solve:

Ax + Hy + G = 0 ⇒ 2h + (5/2)k - 2 = 0

Hx + By + F = 0 ⇒ (5/2)h + 2k - 5/2 = 0

From first: 4h + 5k = 4

From second: 5h + 4k = 5

Solving: h = 1, k = 0

Center is (1, 0)

Concept: Finding center of conic
Level 4: JEE Advanced
Show that the equation 4x² + 4xy + y² - 6x - 3y + 2 = 0 represents a pair of parallel straight lines.

Solution:

Given: A = 4, B = 1, H = 2, G = -3, F = -3/2, C = 2

Find discriminant: AB - H² = 4×1 - 2² = 4 - 4 = 0

Since AB - H² = 0, it's either parabola or pair of parallel lines.

Factor the quadratic in x and y:

4x² + 4xy + y² = (2x + y)²

Complete the square:

(2x + y)² - 6x - 3y + 2 = 0

Let u = 2x + y, then u² - 3(u/2) + 2 = 0

2u² - 3u + 4 = 0

Discriminant: 9 - 32 = -23 < 0

Wait, let's try another approach:

Rewrite as: (2x + y - 1)(2x + y - 2) = 0

Expanding: 4x² + 4xy + y² - 4x - 2y - 2x - y + 2 = 4x² + 4xy + y² - 6x - 3y + 2

Yes! It represents two parallel lines: 2x + y - 1 = 0 and 2x + y - 2 = 0

Concept: Factorization of conic, pair of lines

8. Advanced JEE Concepts

Common Tangents to Two Conics

Let two conics be S₁ = 0 and S₂ = 0. The equation of a common tangent can be written as:

$$S_1 + \lambda S_2 = 0$$

where λ is a parameter. This equation represents the family of curves passing through the intersection points of S₁ and S₂. For this to represent a pair of straight lines (tangents), the discriminant of the combined equation must be zero.

Director Circle of Conics

The director circle is the locus of points from which two tangents to the conic are perpendicular.

Conic Director Circle Equation
Circle x² + y² = a² x² + y² = 2a²
Ellipse x²/a² + y²/b² = 1 x² + y² = a² + b²
Hyperbola x²/a² - y²/b² = 1 x² + y² = a² - b²
Parabola y² = 4ax x + a = 0 (a line)

Chord of Contact and Chord of Midpoint

Chord of Contact: From point (x₁, y₁) outside a conic, the chord joining the points of contact of tangents drawn from that point.

For ellipse x²/a² + y²/b² = 1: T = 0 gives chord of contact

$$\frac{xx_1}{a^2} + \frac{yy_1}{b^2} = 1$$

Chord of Midpoint: For a conic S = 0, the chord whose midpoint is (x₁, y₁) is given by T = S₁

$$T = S_1$$

Conics as Confocal

Two conics are confocal if they have the same foci. For example, confocal ellipses have equations:

$$\frac{x^2}{a^2} + \frac{y^2}{b^2} = 1 \quad \text{and} \quad \frac{x^2}{a_1^2} + \frac{y^2}{b_1^2} = 1$$

with the same foci, meaning a² - b² = a₁² - b₁² = constant.

Parametric Equations of Tangents

Parametric forms of tangents to different conics:

  • Parabola y² = 4ax: Parametric point (at², 2at), Tangent: ty = x + at²
  • Ellipse x²/a² + y²/b² = 1: Parametric point (a cos θ, b sin θ), Tangent: (x cos θ)/a + (y sin θ)/b = 1
  • Hyperbola x²/a² - y²/b² = 1: Parametric point (a sec θ, b tan θ), Tangent: (x sec θ)/a - (y tan θ)/b = 1

Asymptotes

Finding asymptotes of a hyperbola:

For hyperbola Ax² + By² + 2Hxy + 2Gx + 2Fy + C = 0

The asymptotes are given by solving:

$$Ax^2 + 2Hxy + By^2 + 2Gx + 2Fy + C = 0$$

treating it as a pair of lines (replace constant term with zero).

The asymptotes of a hyperbola intersect at its center and are symmetric about the axes of the hyperbola.

Polar Equation of Conics

With focus as pole and directrix as initial line:

$$\frac{l}{r} = 1 + e \cos\theta$$

or

$$\frac{l}{r} = 1 + e \sin\theta$$

where l is semi-latus rectum and e is eccentricity.

Homogenization

To homogenize a straight line equation with respect to a conic:

Given conic S = 0 and line ax + by + c = 0

The homogeneous equation of degree 2 is:

$$S + \lambda(ax + by + c)^2 = 0$$

This represents the pair of lines passing through the intersection of the conic and the given line.

Equation of Director Circle

The director circle is the locus of the point of intersection of two perpendicular tangents to the conic.

For different conics:

  • Circle: x² + y² = a² + a² = 2a²
  • Ellipse: x² + y² = a² + b²
  • Hyperbola: x² + y² = a² - b²

Length of Tangent from External Point

For conic S = 0 and external point (x₁, y₁):

Length of tangent = √(S₁)

where S₁ is obtained by substituting (x₁, y₁) in the conic equation.

Pair of Tangents from External Point

Equation of pair of tangents from point (x₁, y₁) to conic S = 0:

$$SS_1 = T^2$$

where S = 0 is the conic, S₁ is the value at (x₁, y₁), and T is the polar.

📊 Interactive: Conic Identification

Conic Type: Circle

📝 Graded Examples - Advanced JEE
Level 2: Board
Find the equation of common tangents to circles x² + y² = 1 and x² + y² - 8x + 15 = 0.

Solution:

First circle: x² + y² = 1, center C₁(0, 0), radius r₁ = 1

Second circle: x² + y² - 8x + 15 = 0

(x - 4)² + y² = 1, center C₂(4, 0), radius r₂ = 1

The circles have equal radii and distance between centers = 4

Since |r₁ - r₂| < d < r₁ + r₂, there are two common external tangents.

Let the common tangent be y = mx + c

Distance from C₁ to tangent = r₁: |c|/√(1 + m²) = 1

Distance from C₂ to tangent = r₂: |4m + c|/√(1 + m²) = 1

Solving: c² = 1 + m² and (4m + c)² = 1 + m²

Taking c = √(1 + m²): (4m + √(1 + m²))² = 1 + m²

This gives m = 0, so c = ±1

Tangents: y = 1 and y = -1

Concept: Common tangents to circles, distance formula
Level 3: JEE Main
Find the locus of the center of a circle which touches the circle x² + y² = 4 externally and the line x = 2 internally.

Solution:

Let the required circle have center (h, k) and radius r.

Condition 1: Touches circle x² + y² = 4 externally

Distance from (h, k) to origin = r + 2

√(h² + k²) = r + 2

Condition 2: Touches line x = 2 internally

Distance from (h, k) to line x = 2 = |h - 2| = r - 2 (since inside)

Since circle is to the right of line, h > 2

h - 2 = r - 2 ⇒ h = r

Substitute r = h: √(h² + k²) = h + 2

h² + k² = h² + 4h + 4

k² = 4h + 4

4h = k² - 4

h = (k² - 4)/4

Replacing (h, k) with (x, y):

x = (y² - 4)/4

4x = y² - 4

y² = 4x + 4

This is a parabola.

Concept: Locus, circle touching conditions
Level 4: JEE Advanced
From a point on the director circle of ellipse x²/4 + y²/3 = 1, tangents are drawn to the ellipse. Find the angle between these tangents.

Solution:

Ellipse: x²/4 + y²/3 = 1, so a² = 4, b² = 3, a = 2, b = √3

Director circle: x² + y² = a² + b² = 4 + 3 = 7

Let the point on director circle be P(√7 cos θ, √7 sin θ)

Equation of tangent from P to ellipse: T = 0

(x cos θ)/2 + (y sin θ)/√3 = 1 (with appropriate scaling)

The angle between two tangents from point (x₁, y₁) to ellipse is given by:

$$\tan\theta = \frac{2ab\sqrt{g^2 + f^2 - c(a^2 + b^2)}}{g^2 + f^2 - (a^2 + b^2)}$$

Actually, simpler approach: For point on director circle, the chord of contact subtends a right angle at the center.

Actually, from definition of director circle, the tangents are perpendicular.

Therefore, angle between tangents = 90°

Concept: Director circle, angle between tangents
Level 5: Challenge
Prove that the locus of the point of intersection of two perpendicular tangents to the parabola y² = 4ax is its directrix.

Solution:

Let the two perpendicular tangents have slopes m₁ and m₂ such that m₁m₂ = -1

Equation of tangent with slope m: ty = x + at² where t = 1/m

Let the intersection point be (h, k)

For first tangent: k = h/a + a/m₁

For second tangent: k = h/a + a/m₂

Subtracting: a(1/m₁ - 1/m₂) = 0

Since a ≠ 0, 1/m₁ = 1/m₂ ⇒ m₁ = m₂

This contradicts m₁m₂ = -1

Let's use another form: Tangent in parametric form: t₁y = x + at₁²

Slope m₁ = 1/t₁

Tangent with slope m₂ = -1/m₁ = -t₁

Parametric form: t₂y = x + at₂², slope = 1/t₂

1/t₂ = -t₁ ⇒ t₂ = -1/t₁

Intersection: from both tangents:

t₁k = h + at₁² ⇒ h = t₁k - at₁²

(-1/t₁)k = h + a/t₁²

-k/t₁ = t₁k - at₁² + a/t₁²

Multiply by t₁: -k = t₁²k - at₁³ + a/t₁

This is getting complex. Let's use the direct approach.

For parabola y² = 4ax, any tangent can be written as y = mx + a/m

Let two perpendicular tangents be: y = m₁x + a/m₁ and y = m₂x + a/m₂ with m₁m₂ = -1

At intersection (h, k):

k = m₁h + a/m₁ and k = m₂h + a/m₂

Since m₂ = -1/m₁:

k = m₁h + a/m₁ and k = -h/m₁ - am₁

Adding: 2k = m₁h - m₁h + a/m₁ - am₁

2k = a(1/m₁ - m₁)

From the first equation: k - m₁h = a/m₁

Substitute m₂ = -1/m₁ into the second equation:

k = (-1/m₁)h + a/(-1/m₁) = -h/m₁ - am₁

Now we have:

k = m₁h + a/m₁ (1)

k = -h/m₁ - am₁ (2)

Subtract equation (2) from equation (1):

0 = m₁h + h/m₁ + a/m₁ + am₁

0 = h(m₁ + 1/m₁) + a(m₁ + 1/m₁)

0 = (h + a)(m₁ + 1/m₁)

Since m₁ + 1/m₁ ≠ 0 (for real m₁), we have:

h + a = 0

h = -a

Therefore, the locus is x = -a, which is the directrix of the parabola y² = 4ax.

Concept: Director circle, perpendicular tangents, locus problems
Level 5: Challenge
Prove that the locus of the point of intersection of two tangents to the ellipse x²/a² + y²/b² = 1 which are equally inclined to the axes is the circle x² + y² = a² + b².

Solution:

Let the two tangents have slopes m and m (since equally inclined to axes, they have same slope magnitude but opposite signs, so let them be m and -m).

Equation of tangent with slope m: y = mx ± √(a²m² + b²)

Equation of tangent with slope -m: y = -mx ± √(a²m² + b²)

Let the intersection point be (h, k).

From first tangent: k = mh ± √(a²m² + b²)

From second tangent: k = -mh ± √(a²m² + b²)

Adding these two equations:

2k = ±2√(a²m² + b²)

k = ±√(a²m² + b²)

Subtracting the second from the first:

2mh = 0

Since m ≠ 0 (otherwise tangents are horizontal and vertical, not equally inclined), we have h = 0.

But this gives only the y-axis. Let me reconsider.

Actually, "equally inclined to the axes" means the angles with x-axis and y-axis are equal, which happens when |m| = 1.

So let the tangents have slopes 1 and -1.

Tangent with slope 1: y = x ± √(a² + b²)

Tangent with slope -1: y = -x ± √(a² + b²)

Intersection points:

Case 1: y = x + √(a² + b²) and y = -x + √(a² + b²)

x + √(a² + b²) = -x + √(a² + b²)

2x = 0 ⇒ x = 0, y = √(a² + b²)

Point: (0, √(a² + b²))

Case 2: y = x + √(a² + b²) and y = -x - √(a² + b²)

x + √(a² + b²) = -x - √(a² + b²)

2x = -2√(a² + b²) ⇒ x = -√(a² + b²), y = 0

Point: (-√(a² + b²), 0)

Similarly for other combinations, we get points (±√(a² + b²), 0) and (0, ±√(a² + b²))

These lie on the circle x² + y² = a² + b²

Actually, the locus is the director circle x² + y² = a² + b²

Concept: Director circle, tangents with given slope

9. Problem Bank (Graded Difficulty)

Level 1
Level 2
Level 3
Level 4
Level 5

Level 1: Basic Problems

Level 1: Basic
Find the distance between points (1, 2) and (4, 6).

Solution:

Using distance formula:

$$d = \sqrt{(4-1)^2 + (6-2)^2} = \sqrt{3^2 + 4^2} = \sqrt{9 + 16} = \sqrt{25} = 5$$
Concept: Distance formula
Level 1: Basic
Find the equation of line passing through (2, 3) with slope 2.

Solution:

Using point-slope form:

$$y - 3 = 2(x - 2)$$ $$y - 3 = 2x - 4$$ $$y = 2x - 1$$
Concept: Point-slope form
Level 1: Basic
Find the center and radius of circle x² + y² - 4x + 6y - 12 = 0.

Solution:

Comparing with x² + y² + 2gx + 2fy + c = 0:

2g = -4 ⇒ g = -2

2f = 6 ⇒ f = 3

c = -12

Center = (-g, -f) = (2, -3)

Radius = √(g² + f² - c) = √(4 + 9 + 12) = √25 = 5

Concept: General circle equation
Level 1: Basic
Find the focus and directrix of parabola x² = 12y.

Solution:

Comparing x² = 12y with x² = 4ay:

4a = 12 ⇒ a = 3

Focus: (0, a) = (0, 3)

Directrix: y = -a = -3

Concept: Parabola parameters
Level 1: Basic
Find the eccentricity of ellipse x²/25 + y²/16 = 1.

Solution:

a² = 25, b² = 16

a = 5, b = 4

c = √(a² - b²) = √(25 - 16) = √9 = 3

e = c/a = 3/5 = 0.6

Concept: Eccentricity of ellipse

Level 2: Board Level Problems

Level 2: Board
Find the area of triangle with vertices (1, 2), (3, 4), and (5, 1).

Solution:

Using shoelace formula:

$$\text{Area} = \frac{1}{2}\left|1(4-1) + 3(1-2) + 5(2-4)\right|$$ $$= \frac{1}{2}\left|1(3) + 3(-1) + 5(-2)\right|$$ $$= \frac{1}{2}\left|3 - 3 - 10\right| = \frac{1}{2}|-10| = 5$$
Concept: Area of triangle, shoelace formula
Level 2: Board
Find the equation of tangent to ellipse \$\frac{x^2}{16} + \frac{y^2}{9} = 1\$ at point (4 cos θ, 3 sin θ).

Solution:

Using tangent formula: \$\frac{xx_1}{a^2} + \frac{yy_1}{b^2} = 1\$

\$x(4 \cos \theta)/16 + y(3 \sin \theta)/9 = 1\$

\$\frac{x \cos \theta}{4} + \frac{y \sin \theta}{3} = 1\$

\$3x \cos \theta + 4y \sin \theta = 12\$

Concept: Tangent to ellipse in parametric form
Level 3: JEE Main
Find the eccentricity of ellipse 9x² + 16y² = 144.

Solution:

Divide by 144: x²/16 + y²/9 = 1

a² = 16, b² = 9

a = 4, b = 3

c = √(a² - b²) = √(16 - 9) = √7

e = c/a = √7/4

Concept: Eccentricity of ellipse
Level 4: JEE Advanced
Find the equation of the director circle of ellipse x² + 4y² = 8.

Solution:

Divide by 8: x²/8 + y²/2 = 1

a² = 8, b² = 2

Director circle: x² + y² = a² + b² = 8 + 2 = 10

Concept: Director circle of ellipse
Level 5: Challenge
Prove that the sum of squares of perpendiculars from any point on the ellipse to a pair of conjugate diameters is constant.

Solution:

Let conjugate diameters have equations y = m₁x and y = m₂x where m₁m₂ = -b²/a²

For any point P(x, y) on ellipse x²/a² + y²/b² = 1

Distance from P to y = m₁x: d₁ = |m₁x - y|/√(1 + m₁²)

Distance from P to y = m₂x: d₂ = |m₂x - y|/√(1 + m₂²)

d₁² + d₂² = (m₁x - y)²/(1 + m₁²) + (m₂x - y)²/(1 + m₂²)

Since m₁m₂ = -b²/a² and using ellipse equation, this sum simplifies to a² + b²

Concept: Conjugate diameters, distance formula

10. Formula Sheet & Strategy

📐 Complete Formula Sheet

Distance Formula

$$d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}$$

Section Formula

Internal: \$\left(\frac{mx_2 + nx_1}{m+n}, \frac{my_2 + ny_1}{m+n}\right)\$

External: \$\left(\frac{mx_2 - nx_1}{m-n}, \frac{my_2 - ny_1}{m-n}\right)\$

Area of Triangle

$$\frac{1}{2}\left|x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2)\right|$$

Line Forms

Point-slope: y - y₁ = m(x - x₁)

Slope-intercept: y = mx + c

Intercept: x/a + y/b = 1

Distance Point to Line

$$d = \frac{|Ax_1 + By_1 + C|}{\sqrt{A^2 + B^2}}$$

Circle

Standard: (x - h)² + (y - k)² = r²

General: x² + y² + 2gx + 2fy + c = 0

Center: (-g, -f), Radius: √(g² + f² - c)

Parabola y² = 4ax

Focus: (a, 0), Directrix: x = -a

Tangent at (x₁, y₁): yy₁ = 2a(x + x₁)

Parametric: (at², 2at)

Ellipse x²/a² + y²/b² = 1

Foci: (±c, 0), c = √(a² - b²)

Eccentricity: e = c/a

Tangent: xx₁/a² + yy₁/b² = 1

Hyperbola x²/a² - y²/b² = 1

Foci: (±c, 0), c = √(a² + b²)

Eccentricity: e = c/a

Asymptotes: y = ±(b/a)x

Director Circles

Circle: x² + y² = 2a²

Ellipse: x² + y² = a² + b²

Hyperbola: x² + y² = a² - b²

Parabola: x + a = 0

🎯 JEE Problem-Solving Strategy

  • Read Carefully: Understand what's given and what's asked
  • Identify the Conic: Classify the equation first
  • Use Standard Forms: Convert to standard form when possible
  • Parametric Form: Use parametric equations for tangents and normals
  • Properties: Use geometric properties (director circle, foci, etc.)
  • Check Conditions: Verify tangency, intersection conditions
  • Simplify: Rationalize denominators, complete squares
  • Verify: Check if answer makes sense geometrically

⚠️ Common Traps to Avoid

  • Confusing internal and external section formula
  • Forgetting absolute value in distance and area formulas
  • Mixing up a and b in ellipse/hyperbola equations
  • Not checking if point lies on the conic before using tangent formulas
  • Forgetting that hyperbola has two branches
  • Not considering degenerate cases
  • Sign errors in distance formulas
  • Confusing parametric angle with actual angle

💎 Key Remember: For any conic section, the tangent at a point (x₁, y₁) on the conic is obtained by replacing x² with xx₁, y² with yy₁, and 2xy with x(y₁) + y(x₁). This is called the "T = 0" rule and works for all conics in general form.